home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_085 / rawio / makefile next >
Makefile  |  1992-05-06  |  237b  |  15 lines

  1. OBJ =        raw.o sendpacket.o testraw.o
  2. CC =        lc
  3.  
  4. testraw :    $(OBJ)
  5.         blink with test.with
  6.  
  7. raw.o :        raw.c
  8.         $(CC) $(CFLAGS) raw.c
  9.  
  10. sendpacket.o :    sendpacket.c
  11.         $(CC) $(CFLAGS) sendpacket.c
  12.  
  13. testraw.o :    testraw.c
  14.         $(CC) $(CFLAGS) testraw.c
  15.